push(back) & emplace(back) Posted on 2018-09-02 | In ACM , STL emplace不需要触发拷贝构造和转移构造,速度更快。 1- ```vector```中可以用```emplace_back```代替```push_back